BanniΦre dΘcorative

Méthode Project reduceProject()


    app.project.reduceProject(array_of_items)

Description

    Reproduit la fonctionnalité de la commande Fichier > Réduire le projet.

Paramètres

    array_of_items

    éléments auxquels le projet doit être réduit

Renvoie

    Entier ; nombre total d'éléments supprimés.

Exemple

    var theItems = new Array();
    theItems[theItems.length] = app.project.item(1);
    theItems[theItems.length] = app.project.item(3);
       
    app.project.reduceProject(theItems);